home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / png / ptot / makefile.nt < prev    next >
Makefile  |  1995-03-29  |  620b  |  39 lines

  1. # Makefile for Windows NT (Posix Subsystem)
  2. #
  3.  
  4. !include <ntwin32.mak>
  5.  
  6. cc = cl
  7. link = link
  8.  
  9. .c.obj:
  10.     $(cc) $(cdebug) $(cflags) $(cvars) $(psxvars) $*.c
  11.  
  12. .obj.exe:
  13.     $(link) $(linkdebug) $(psxflags) -out:$*.exe $** $(psxlibs)
  14. #
  15. #
  16.  
  17. all: ptot.exe
  18.  
  19. clean:
  20.     del *.exe *.obj *.bak *.pdb *.tmp
  21.  
  22. ptot.exe: ptot.obj zchunks.obj tempfile.obj tiff.obj crc32.obj inflate.obj
  23.  
  24. mp.exe: mp.obj crc32.obj
  25.  
  26. mp.obj: mp.c ptot.h
  27.  
  28. ptot.obj: ptot.c ptot.h errors.h
  29.  
  30. zchunks.obj: zchunks.c ptot.h errors.h
  31.  
  32. tempfile.obj: tempfile.c ptot.h errors.h
  33.  
  34. tiff.obj: tiff.c ptot.h errors.h
  35.  
  36. crc32.obj: crc32.c
  37.  
  38. inflate.obj: inflate.c inflate.h ptot.h
  39.